home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / iterat31.zip / TRIGS1.FRM < prev    next >
Text File  |  1993-09-09  |  243b  |  23 lines

  1. ;Iterate! function file
  2. ;by Brent Hugh
  3.  
  4. ;parameter defaults
  5. a=1
  6. b=.5
  7. c=1
  8. d=1
  9. mu=.2
  10.  
  11. ;window defaults
  12. xmin=-20
  13. xmax=20
  14. ymin=-20
  15. ymax=20
  16.  
  17. ;the function itself
  18. x= c * x + cos (a * y) + sin(mu * x)
  19. y= d * y + sin(b * x)
  20.  
  21.  
  22.  
  23.